-
-
Notifications
You must be signed in to change notification settings - Fork 6
Added some missing baudrates #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hi all, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Cristian!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested the changes using the sketch SerialEcho, with an Arduino Uno
board on Windows 11. The only baudrate value that is giving me some issues is 300
, while the others work fine both on the arduino-cli and on the Java Ide. The issues might be related to the board, but I'm not entirely sure.
@MatteoPologruto 300bps is a special baud that might not work on UNO/Mega (due to shortcomings in the usb2serial chip firmware), so the failure is "expected" |
This is a tentative fix to add missing baud rates. It is known that there may be some issues on some OS, so testing is required to see if everything is working as expected.
The Arduino IDE 1.8.x has the following baud rates in the selector:
I've added the missing
74880
,250000
, and also31250
(that is not available in the Arduino IDE 1.8.x).